dynamic allocation - vertaling naar duits
Diclib.com
Woordenboek ChatGPT
Voer een woord of zin in in een taal naar keuze 👆
Taal:

Vertaling en analyse van woorden door kunstmatige intelligentie ChatGPT

Op deze pagina kunt u een gedetailleerde analyse krijgen van een woord of zin, geproduceerd met behulp van de beste kunstmatige intelligentietechnologie tot nu toe:

  • hoe het woord wordt gebruikt
  • gebruiksfrequentie
  • het wordt vaker gebruikt in mondelinge of schriftelijke toespraken
  • opties voor woordvertaling
  • Gebruiksvoorbeelden (meerdere zinnen met vertaling)
  • etymologie

dynamic allocation - vertaling naar duits

COMPUTER MEMORY MANAGEMENT METHODOLOGY IN WHICH THE PROGRAMMER EXPLICITLY CONTROLS ALLOCATION AND DEALLOCATION
Dynamic allocation; Custom memory allocation; Heap allocation

dynamic allocation         
dynamische Zuweisung (Speicherzuweisung im Computer während der Programmerprobung)
resource allocation         
ALLOCATION OF RESOURCES AMONG POSSIBLE USES
Distributed resource allocation; Allocation of resources; Resource allocation problems; Resource allocation problem; Allocation of Resources; Resource allocation mechanism; Resource Allocation; Algorithms for resource allocation
Zuteilung von Mitteln (Zuteilung von Computerreserven -Speicher, Zeit usw.-zwischen verschiedenen Anwendungssystemen)
dynamic analysis         
METHOD OF ANALYSING THE IMPACT OF FISCAL POLICY CHANGES BY FORECASTING THE EFFECTS OF ECONOMIC AGENTS' REACTIONS TO INCENTIVES CREATED BY POLICY
Dynamic analysis
dynamische Analyse (Untersuchung von Variablen und Trends)

Definitie

memory management
<memory management, storage> A collection of techniques for providing sufficient memory to one or more processes in a computer system, especially when the system does not have enough memory to satisfy all processes' requirements simultaneously. Techniques include swapping, paging and virtual memory. Memory management is usually performed mostly by a hardware memory management unit. (1995-01-23)

Wikipedia

Manual memory management

In computer science, manual memory management refers to the usage of manual instructions by the programmer to identify and deallocate unused objects, or garbage. Up until the mid-1990s, the majority of programming languages used in industry supported manual memory management, though garbage collection has existed since 1959, when it was introduced with Lisp. Today, however, languages with garbage collection such as Java are increasingly popular and the languages Objective-C and Swift provide similar functionality through Automatic Reference Counting. The main manually managed languages still in widespread use today are C and C++ – see C dynamic memory allocation.